Release 10.1A: OpenEdge Development:
Progress 4GL Reference


PROPATH function

Returns the current value of the PROPATH environment variable.

Syntax

PROPATH 

Example

This procedure first displays a comma-separated list of the directories in the current PROPATH. It then displays each directory in the current PROPATH, one per line.

r-ppath1.p
DEFINE VARIABLE i AS INTEGER.

DISPLAY PROPATH.

REPEAT i = 1 TO NUM-ENTRIES(PROPATH):
  DISPLAY ENTRY(i , PROPATH) FORMAT "x(30)".
END. 

Notes

See also

PROPATH statement


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095